type net/http.http2flow

15 uses

	net/http (current package)
		h2_bundle.go#L1306: type http2flow struct {
		h2_bundle.go#L1316: 	conn *http2flow
		h2_bundle.go#L1319: func (f *http2flow) setConnFlow(cf *http2flow) { f.conn = cf }
		h2_bundle.go#L1321: func (f *http2flow) available() int32 {
		h2_bundle.go#L1329: func (f *http2flow) take(n int32) {
		h2_bundle.go#L1341: func (f *http2flow) add(n int32) bool {
		h2_bundle.go#L4220: 	flow             http2flow                   // conn-wide (not stream-specific) outbound flow control
		h2_bundle.go#L4221: 	inflow           http2flow                   // conn-wide inbound flow control
		h2_bundle.go#L4299: 	flow             http2flow // limits writing from Handler to client
		h2_bundle.go#L4300: 	inflow           http2flow // what the client is allowed to POST/etc to us
		h2_bundle.go#L6980: 	flow            http2flow  // our conn-level flow control quota (cs.flow is per stream)
		h2_bundle.go#L6981: 	inflow          http2flow  // peer's conn-level flow control
		h2_bundle.go#L7045: 	flow        http2flow // guarded by cc.mu
		h2_bundle.go#L7046: 	inflow      http2flow // guarded by cc.mu